home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WINSOCK.PAK / SOCKBOUT.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  873b  |  38 lines

  1. #if !defined(SOCKBOUT_H)
  2. #define SOCKBOUT_H
  3.  
  4. #include <owl/defs.h>
  5. #include "sockdemo.rh"                  // Definition of all resources.
  6.  
  7.  
  8. class DlgSockDemoAbout : public TDialog {
  9.   public:
  10.     DlgSockDemoAbout (TWindow *parent, TResId resId = IDD_ABOUT, TModule *module = 0);
  11.     virtual ~DlgSockDemoAbout ();
  12.     void SetupWindow ();
  13. };
  14.  
  15.  
  16.  
  17. class ProjectRCVersion {
  18.   public:
  19.     ProjectRCVersion (TModule *module);
  20.     virtual ~ProjectRCVersion ();
  21.  
  22.     bool GetProductName (LPSTR &prodName);
  23.     bool GetProductVersion (LPSTR &prodVersion);
  24.     bool GetCopyright (LPSTR ©right);
  25.     bool GetDebug (LPSTR &debug);
  26.  
  27.   protected:
  28.     LPBYTE     TransBlock;
  29.     void far*  FVData;
  30.  
  31.   private:
  32.     ProjectRCVersion (const ProjectRCVersion &);
  33.     ProjectRCVersion & operator =(const ProjectRCVersion &);
  34. };
  35.  
  36.  
  37. #endif  // SOCKBOUT_H
  38.